home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / prg / Vidada / DOC < prev    next >
Text File  |  1995-11-22  |  2KB  |  41 lines

  1. Video Adapter Test Program - by Aaron Johnson
  2.  
  3. This program uses portions of code from John Bridges' VGAKIT, and
  4. Bob Berry's VIDEOID
  5.  
  6. This program will attempt to test the various video modes of your video
  7. adapter.  Basically it will set the mode, then draw moving lines on your
  8. screen until you press the ESC key.  Pressing SPACE will reset the lines.
  9.  
  10. You can run this program three ways:
  11.  
  12. VIDEO A - will attempt to identify your adapter and tell you the
  13.           kind of VGA card & how much memory you have, and what video
  14.           modes it thinks you can use.  It will then attempt to call
  15.           the highest 256-color mode and the highest 16-color mode
  16.           available, with the above mentioned drawing routine.
  17.           if you don't have a VGA card, it will only identify the adapter
  18.  
  19. VIDEO M#- where # is the mode # (base 10) to pass to register AX. The program
  20.           will tell you what resolution the mode # results in.
  21.  
  22. VIDEO # - will attempt to set a mode based on an internal mode list.
  23.           # is a number taken from the following video mode list:
  24.  
  25.            0.  CGA  320 x 200 x   4           1.  CGA  640 x 200 x   2
  26.            2.  EGA  320 x 200 x  16           3.  EGA  640 x 350 x   2
  27.            4.  EGA  640 x 350 x  16           5. MCGA  320 x 200 x 256
  28.            6.  VGA  640 x 480 x   2           7.  VGA  640 x 480 x  16
  29.            8. EEGA  800 x 600 x  16           9. EEGA 1024 x 768 x  16
  30.           10. SVGA  640 x 400 x 256          11. SVGA  640 x 480 x 256
  31.           12. SVGA  800 x 600 x 256          13. SVGA 1024 x 768 x 256
  32.           14. *VGA  320 x 400 x 256          15. *VGA  320 x 480 x 256
  33.           16. *VGA  360 x 480 x 256          17. *VGA  376 x 564 x 256
  34.           18. *VGA  400 x 564 x 256          19. *VGA  400 x 600 x 256
  35.           20. *VGA  704 x 528 x  16          21. *VGA  720 x 540 x  16
  36.           22. *VGA  736 x 552 x  16          23. *VGA  752 x 564 x  16
  37.           24. *VGA  768 x 576 x  16          25. *VGA  784 x 588 x  16
  38.           26. *VGA  800 x 600 x  16
  39.  
  40.        * Register Compatible VGA Adapters ONLY!
  41.